home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-09-06 | 956 b | 49 lines | [TEXT/CWIE] |
- // DModelessRadiosData -- data class for Everything
-
- #pragma once
-
- #include "AMSignaler.h"
-
-
- const long idRadioGroup3 = 'Rad3';
- const long idGroup3 = 'Gro3';
- const long idGraphic5 = 'Gra5';
- const long idBevel3 = 'Bev3';
- const long idText3 = 'Tex5';
-
- class AMEngine;
-
- //----------
- class DModelessRadiosData : public AMSignaler {
- public:
- DModelessRadiosData ();
- virtual ~DModelessRadiosData ();
-
- public:
- void ReadFromFile (AMEngine* engine);
- void WriteToFile (AMEngine* engine);
-
- public:
- SInt16 GetRadioGroup3 () const;
- void SetRadioGroup3 (SInt16 inValue);
-
- SInt16 GetGroup3 () const;
- void SetGroup3 (SInt16 inValue);
-
- SInt16 GetGraphic5 () const;
- void SetGraphic5 (SInt16 inValue);
-
- SInt16 GetBevel3 () const;
- void SetBevel3 (SInt16 inValue);
-
- SInt16 GetText3 () const;
- void SetText3 (SInt16 inValue);
-
- protected:
- SInt16 mRadioGroup3;
- SInt16 mGroup3;
- SInt16 mGraphic5;
- SInt16 mBevel3;
- SInt16 mText3;
- };
-